home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1998 May
/
Macworld (1998-05).dmg
/
Shareware World
/
Comms & Internet
/
ProTERM_1.2.5.Install
/
ProTERM Mac1.2.5
/
Extras
/
Resident User F5-F10
< prev
next >
Wrap
Text File
|
1997-06-06
|
3KB
|
168 lines
/***************************************
* *
* ProTERM/Mac Resident User F5-F15 *
* *
* Version 1202 Updated 5/30/97 *
* *
***************************************/
/*
This empty "macro template" file can be modified to add additional macros to ProTERM. To use this file:
-- READ ME FIRST --
This is a custom VT-102 macro template file which can be used to add F-keys
beyond F1-F4. This set currently adds F5-F12. To install this set:
1- Open the service dialer that will be used with this macro set.
2- Click the Emulation radio button
3- Set Display to VT-102.
4- Set Keyboard: selection to Default.
5- Drag this file to the ProTERM > Macros folder.
6- Rename this file as "Resident User 1" (or 2 other unused number).
7- After placing this file in the ProTERM > Macros folder, and after making
any changes to the macro commands in this file, either press:
COMMAND+OPTION+Z or restart ProTERM to Reload the macro sets.
ºlmººpmº
*/
//
// special "link" code just in case file is executed directly
//
FUNC main()
{
SHARED STR _mac0;
EXTERN(_mac0,main(1));
RETURN;
}
/***********************************************************************/
/* Start of Startup Macros */
/***********************************************************************/
FUNC startup()
{
//
// Add startup macro variables after this comment
//
// leave this code unchanged
RESIDENT("",0,#KeyAccess+#LibAccess);
RETURN;
}
/***********************************************************************/
/* Start of Keyboard Macros */
/***********************************************************************/
//
// F5 macro: Insert desired keyboard code within quotes in PR() statement.
//
func ktr_0060()
{
PR("F5");
RETURN;
}
//
// F6 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_0061()
{
PR("F6");
RETURN;
}
//
// F7 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_0062()
{
PR("F7");
RETURN;
}
//
// F8 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_0064()
{
PR("F8");
RETURN;
}
//
// F9 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_0065()
{
PR("F9");
RETURN;
}
//
// F10 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_006d()
{
PR("F10");
RETURN;
}
//
// F11 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_0067()
{
PR("F11");
RETURN;
}
//
// F12 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_006f()
{
PR("F12");
RETURN;
}
//
// F13 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_0069()
{
PR("F13");
RETURN;
}
//
// F14 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_006b()
{
PR("F14");
RETURN;
}
//
// F15 macro: Insert desired keyboard code within quotes in PR() statement.
//
FUNC ktr_0071()
{
PR("F15");
RETURN;
}